// @description Adds an option to download and convert Clipfish videos.
// @namespace http://googlesystem.blogspot.com
// @include http://*.clipfish.de/*video/*
// @include http://clipfish.de/*video/*
// @version 0.3
// ==/UserScript==
(function () {
if (document.getElementById('convert-clipfish-video')) return;
//if (video_id==null) return;
var clipfish2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL);
var div_embed = document.getElementById('cf-player-social');
if (div_embed) {
div_embed.innerHTML = div_embed.innerHTML + '<div style=\'float: right;\'><span id=\'convert-clipfish-video\'> <a href=\''+clipfish2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span></div>';